The Client
Compute comp =
  (Compute)Naming.Lookup(
   "//butterfly/Computer");

PI pi = new PI(100);
FFT fft = new FFT(args...);

Object piResult = comp.runTask(pi);
Object fftResult = comp.runTask(fft);
// print results...

Return to Tracks